a21988bb13d04d4dcace9e3fbf963ea050358b35,src/test/java/org/springsource/restbucks/payment/web/PaymentProcessIntegrationTest.java,PaymentProcessIntegrationTest,accessFirstOrder,#MockHttpServletResponse#,184

Before Change



		String content = source.getContentAsString();
		String order = JsonPath.read(content, FIRST_ORDER_EXPRESSION).toString();
		Link orderLink = getDiscovererFor(source).findLinkWithRel("self", order);

		log.info(String.format("Picking first order using JSONPath expression %s…", FIRST_ORDER_EXPRESSION));
		log.info(String.format("Discovered self link pointing to %s… Following", orderLink));

After Change



		String content = source.getContentAsString();
		String order = JsonPath.read(content, FIRST_ORDER_EXPRESSION).toString();
		Link orderLink = getDiscovererFor(source).findLinkWithRel("self", order).expand();

		log.info(String.format("Picking first order using JSONPath expression %s…", FIRST_ORDER_EXPRESSION));
		log.info(String.format("Discovered self link pointing to %s… Following", orderLink));